home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / mdxdos23 / readme.txt < prev    next >
Text File  |  1996-07-10  |  4KB  |  140 lines

  1. Dear Developer !  
  2.   
  3. MultiX is a development toolkit for network applications. It enables you to 
  4. develop applications that communicate with each other using a variety of  
  5. network protocols on a variety of platforms and operating systems. All  
  6. network and communications details are handled completely by MultiX.  
  7.   
  8. The version supplied with this distribution includes the library for MS-DOS  
  9. operating system.  
  10.   
  11. This version is distributed as a shareware version.  
  12.   
  13. You may use it within your company freely and you may distribute and copy it  
  14. to any number of computers provided that no charge is paid for it. 
  15.  
  16. REGISTRATION: 
  17. ------------ 
  18.  
  19. As a registered developer you will receive the latest version available at 
  20. the time of registration. You also receive the MultiX manual in 
  21. Microsoft WORD 2.0 format. You will also receive technical support through 
  22. our INTERNET E-mail address. Registration fee is calculated based on the 
  23. number of developers using it on a site. 
  24.  
  25. The fee per developer is $35. 
  26.  
  27. Please send the registration fee to : 
  28.  
  29.     Mitug Distributed Systems Ltd. 
  30.     5 Jabotinsky St, 
  31.     Ranana 43363 
  32.     Israel 
  33.     ------------------------------ 
  34.  
  35.  
  36. DISTRIBUTION: 
  37. ------------ 
  38. Registered developers only : 
  39.  
  40. -    You may develope or distribute any application that is using MultiX, 
  41.     with no need to pay Royalty Fees. 
  42.  
  43. -    If you want to sell your application, you may do so freely and without 
  44.     paying Royalty fees, provided that MultiX is not sold separetly, and not 
  45.     supplied in it's .LIB or .OBJ format but only as part of the executible 
  46.     file in the .EXE format. 
  47.  
  48. Others - Non commercial: 
  49. ------- 
  50.  
  51. -    You may develope or distribute any application that is using MultiX, 
  52.     with no need to pay Royalty Fees, provided that no charge is paid for 
  53.     the application you want distribute. 
  54.  
  55. Others - Commercial : 
  56. ------------------- 
  57. Please contact us on our internet E-mail : mitug@netvision.net.il 
  58.  
  59. ******************************************************************************* 
  60.  
  61. Please see the copyrigt.txt file for copyright information.  
  62.   
  63. ******************************************************************************* 
  64.   
  65. Included on the distribution disk :  
  66.   
  67.     mdxman.txt    -    The MultiX Development Toolkit reference manual.  
  68.     mdxdos.lib    -    The MultiX library for MS-DOS operating system.  
  69.     multix.h    -    The MultiX include file. 
  70.   
  71. also included, some C source files that demonstrate the use of MultiX. 
  72.   
  73.   
  74.   
  75. Notes  
  76. -----  
  77.   
  78. -    The library was compiled using Microsoft Visual C++ 1.5 and it may run  
  79.     on machines having 286 and higher processors. All routines are compiled 
  80.     using the LARGE model (compiled with /AL). "multix.h" does not specify  
  81.     explicitly that the pointers are far pointers. This means that all  
  82.     application modules that call MultiX must also be compiled with /AL.  
  83.   
  84. -    Every module that calls MultiX routines must include "multix.h" before  
  85.     first use of any MultiX routine.  
  86.   
  87.   
  88. -    Make sure that the first call to MultiX will be to "MultiXStart".  
  89.   
  90.   
  91. -    The library version supplied supports the following protocols :  
  92.     Async,Async with modem,Netbios,Ipx/Spx. 
  93.   
  94.     If you do not need one or more of these protocols  
  95.     and you may want to save some memory you can disable the linker from  
  96.     adding the object code to EXE file for the specific protocol by adding to  
  97.     one of your modules the following lines :  
  98.   
  99.   
  100.     to disable Async support add    :  
  101.     ---------------------------------  
  102.     TMdxProtocol    MdxAsyncInit(void)  
  103.     {  
  104.         return(ProtocolNotSupported());  
  105.     }  
  106.     TMdxProtocol    MdxAsyncModemInit(void)  
  107.     {  
  108.         return(ProtocolNotSupported());  
  109.     }  
  110.   
  111.   
  112.     to disable NetBios support add :  
  113.     --------------------------------  
  114.   
  115.     TMdxProtocol    MdxNetBiosInit(void)  
  116.     {  
  117.         return(ProtocolNotSupported());  
  118.     }  
  119.   
  120.     to disable Ipx/Spx support add :  
  121.     --------------------------------  
  122.   
  123.     TMdxProtocol    MdxSpxInit(void)  
  124.     {  
  125.         return(ProtocolNotSupported());  
  126.     }  
  127.   
  128.   
  129. support:  
  130. --------  
  131.   
  132.     if you have any questions or problem you may send E-mail to :  
  133.   
  134.     INTERNET:    mitug@netvision.net.il  
  135.   
  136.   
  137. Thank you for using MultiX.  
  138.  
  139.  
  140.